@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);

body1 {
  
  font-family: "sans-serif";
}
a{
  text-decoration: none;
  color: #000;
}
a:hover{
  color: #B7977B;
}
main {
  background: #FFF;
  width: 85%;
  height:auto;
  margin: 30px auto;
  padding: 0px 0px 80px;
  box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
  margin-top:2px;
  padding-left:5px;
  
}
p {
  font-size: 13px;
}

/* Important code */
input, section1 {
  clear: both;
  padding-top: 10px;
  display: none;
}
label {
  font-weight: bold;
  font-size: 14px;
  display: block;
  float: left;
  padding: 10px 30px;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #DDD;
}
label:hover {
  cursor: pointer;
 
}
#tab1:checked ~ #content1, #tab2:checked ~ #content2, #tab3:checked ~ #content3, #tab4:checked ~ #content4 {
  display: block;
}
input:checked + label {
  border-top-color: #B7977B;
  border-right-color: #DDD;
  border-left-color: #DDD;
  border-bottom-color: transparent;
  text-decoration:underline;
}